﻿BBC BASIC File Converter
========================

Usage

	The converter runs a series of commands based on command-line arguments.
	Each command is defined as the command name, prefixed with a dash, followed
	by the command's arguments. For example,

	BBCBasicConverter -load file.bbc -save file.8xp

	loads the file "file.bbc" then saves it as "file.8xp".
	Commands are case insensitive.

Commands

	-load <filename>
		Loads a the file <filename>. The file may be a tokenised BBC BASIC program,
		TI-83+ variable or text file.
	
	-save <filename>
		Saves the currently loaded file to disk. The format of the file depends on
		the extension:
		.bbc - Saves as BBC BASIC program file.
		.8xp - Saves as TI-83+ program variable (prgm).
		.8xv - Saves as TI-83+ application variable (AppVar).
		.txt - Saves as a UTF-8 text file.
	
	-renumber [<start=10>[ <step=10>]]
		Renumbers the currently loaded program.

Examples
	
	BBCBasicConverter -load program.txt -renumber -save program.8xp
	BBCBasicConverter -load program.8xp -renumber 100 1 -save program.bbc